home *** CD-ROM | disk | FTP | other *** search
/ Aminet 50 / Aminet 50 (2002)(GTI - Schatztruhe)[!][Aug 2002].iso / Aminet / text / edit / tecoc-146.lha / exeb.c < prev    next >
C/C++ Source or Header  |  1991-07-05  |  618b  |  21 lines

  1. /*****************************************************************************
  2.  
  3.     ExeB()
  4.  
  5.     This function executes a B command.
  6.     B    Always equivalent to zero. Thus, B represents the
  7.         position preceding the first character in the buffer.
  8.  
  9. *****************************************************************************/
  10.  
  11. #include "zport.h"        /* define portability identifiers */
  12. #include "tecoc.h"        /* define general identifiers */
  13. #include "defext.h"        /* define external global variables */
  14.  
  15. DEFAULT ExeB()            /* execute a B command */
  16. {
  17.     DBGFEN(1,"ExeB",NULL);
  18.     DBGFEX(1,DbgFNm,"PushEx(0)");
  19.     return PushEx(0L, OPERAND);
  20. }
  21.